home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-29 | 489 bĀ | 26 lines | [TEXT/CWIE] |
- // EverythingApp.h -- application-level functions
-
- #pragma once
-
- #include "AMApp.h"
-
- //----------
- struct EverythingApp {
- AMApp super;
- };
- typedef struct EverythingApp EverythingApp;
-
- //----------
- EverythingApp* NewEverythingApp ();
-
- //----------
- void EverythingApp_Init (EverythingApp* self);
- void EverythingApp_Free (EverythingApp* self);
-
- void OpenApp (AMApp* self);
- Boolean DoAppCommand (AMApp* self,
- long inCommand);
- //protected:
- AMDoc* MakeDoc (AMApp* self);
-
-